home *** CD-ROM | disk | FTP | other *** search
- # Commands covered: set, unset, array
- #
- # This file contains a collection of tests for one or more of the Tcl
- # built-in commands. Sourcing this file into Tcl runs the tests and
- # generates output for errors. No output means no errors were found.
- #
- # Copyright 1991 Regents of the University of California
- # Permission to use, copy, modify, and distribute this
- # software and its documentation for any purpose and without
- # fee is hereby granted, provided that this copyright notice
- # appears in all copies. The University of California makes no
- # representations about the suitability of this software for any
- # purpose. It is provided "as is" without express or implied
- # warranty.
- #
- # $Header: /user6/ouster/tcl/tests/RCS/set.test,v 1.8 91/10/31 16:40:57 ouster Exp $ (Berkeley)
-
- if {[string compare test [info procs test]] == 1} then {source defs}
-
- proc ignore args {}
-
- # Simple variable operations.
-
- catch {unset a}
- test set-1.1 {basic variable setting and unsetting} {
- set a 22
- } 22
- test set-1.2 {basic variable setting and unsetting} {
- set a 123
- set a
- } 123
- test set-1.3 {basic variable setting and unsetting} {
- set a xxx
- format %s $a
- } xxx
- test set-1.4 {basic variable setting and unsetting} {
- set a 44
- unset a
- list [catch {set a} msg] $msg
- } {1 {can't read "a": no such variable}}
-
- # Basic array operations.
-
- catch {unset a}
- set a(xyz) 2
- set a(44) 3
- set {a(a long name)} test
- test set-2.1 {basic array operations} {
- lsort [array names a]
- } {44 {a long name} xyz}
- test set-2.2 {basic array operations} {
- set a(44)
- } 3
- test set-2.3 {basic array operations} {
- set a(xyz)
- } 2
- test set-2.4 {basic array operations} {
- set "a(a long name)"
- } test
- test set-2.5 {basic array operations} {
- list [catch {set a(other)} msg] $msg
- } {1 {can't read "a(other)": no such element in array}}
- test set-2.6 {basic array operations} {
- list [catch {set a} msg] $msg
- } {1 {can't read "a": no such variable}}
- test set-2.7 {basic array operations} {
- format %s $a(44)
- } 3
- test set-2.8 {basic array operations} {
- format %s $a(a long name)
- } test
- unset a(44)
- test set-2.9 {basic array operations} {
- lsort [array names a]
- } {{a long name} xyz}
- unset a
- test set-2.10 {basic array operations} {
- list [catch {set a(xyz)} msg] $msg
- } {1 {can't read "a(xyz)": no such variable}}
-
- # Test the set commands, and exercise the corner cases of the code
- # that parses array references into two parts.
-
- test set-3.1 {set command} {
- list [catch {set} msg] $msg
- } {1 {wrong # args: should be "set varName ?newValue?"}}
- test set-3.2 {set command} {
- list [catch {set x y z} msg] $msg
- } {1 {wrong # args: should be "set varName ?newValue?"}}
- test set-3.3 {set command} {
- catch {unset a}
- list [catch {set a} msg] $msg
- } {1 {can't read "a": no such variable}}
- test set-3.4 {set command} {
- catch {unset a}
- set a(14) 83
- list [catch {set a 22} msg] $msg
- } {1 {can't set "a": variable is array}}
-
- # Test the corner-cases of parsing array names, using set and unset.
-
- test set-4.1 {parsing array names} {
- catch {unset a}
- set a(()) 44
- list [catch {array names a} msg] $msg
- } {0 ()}
- test set-4.2 {parsing array names} {
- catch {unset a a(abcd}
- set a(abcd 33
- info exists a(abcd
- } 1
- test set-4.3 {parsing array names} {
- catch {unset a a(abcd}
- set a(abcd 33
- list [catch {array names a} msg] $msg
- } {1 {"a" isn't an array}}
- test set-4.4 {parsing array names} {
- catch {unset a abcd)}
- set abcd) 33
- info exists abcd)
- } 1
- test set-4.5 {parsing array names} {
- set a(bcd yyy
- catch {unset a}
- list [catch {set a(bcd} msg] $msg
- } {0 yyy}
- test set-4.6 {parsing array names} {
- catch {unset a}
- set a 44
- list [catch {set a(bcd test} msg] $msg
- } {0 test}
-
- # Errors in reading variables
-
- test set-5.1 {errors in reading variables} {
- catch {unset a}
- list [catch {set a} msg] $msg
- } {1 {can't read "a": no such variable}}
- test set-5.2 {errors in reading variables} {
- catch {unset a}
- set a 44
- list [catch {set a(18)} msg] $msg
- } {1 {can't read "a(18)": variable isn't array}}
- test set-5.3 {errors in reading variables} {
- catch {unset a}
- set a(6) 44
- list [catch {set a(18)} msg] $msg
- } {1 {can't read "a(18)": no such element in array}}
- test set-5.4 {errors in reading variables} {
- catch {unset a}
- set a(6) 44
- list [catch {set a} msg] $msg
- } {1 {can't read "a": no such variable}}
-
- # Errors and other special cases in writing variables
-
- test set-6.1 {creating array during write} {
- catch {unset a}
- trace var a rwu ignore
- list [catch {set a(14) 186} msg] $msg [array names a]
- } {0 186 14}
- test set-6.2 {errors in writing variables} {
- catch {unset a}
- set a xxx
- list [catch {set a(14) 186} msg] $msg
- } {1 {can't set "a(14)": variable isn't array}}
- test set-6.3 {errors in writing variables} {
- catch {unset a}
- set a(100) yyy
- list [catch {set a 2} msg] $msg
- } {1 {can't set "a": variable is array}}
- test set-6.4 {expanding variable size} {
- catch {unset a}
- list [set a short] [set a "longer name"] [set a "even longer name"] \
- [set a "a much much truly longer name"]
- } {short {longer name} {even longer name} {a much much truly longer name}}
-
- # Unset command, Tcl_UnsetVar procedures
-
- test set-7.1 {unset command} {
- catch {unset a}; catch {unset b}; catch {unset c}; catch {unset d}
- set a 44
- set b 55
- set c 66
- set d 77
- unset a b c
- list [catch {set a(0) 0}] [catch {set b(0) 0}] [catch {set c(0) 0}] \
- [catch {set d(0) 0}]
- } {0 0 0 1}
- test set-7.2 {unset command} {
- list [catch {unset} msg] $msg
- } {1 {wrong # args: should be "unset varName ?varName ...?"}}
- test set-7.3 {unset command} {
- catch {unset a}
- list [catch {unset a} msg] $msg
- } {1 {can't unset "a": no such variable}}
- test set-7.4 {unset command} {
- catch {unset a}
- set a 44
- list [catch {unset a(14)} msg] $msg
- } {1 {can't unset "a(14)": variable isn't array}}
- test set-7.5 {unset command} {
- catch {unset a}
- set a(0) xx
- list [catch {unset a(14)} msg] $msg
- } {1 {can't unset "a(14)": no such element in array}}
- test set-7.6 {unset command} {
- catch {unset a}; catch {unset b}; catch {unset c}
- set a foo
- set c gorp
- list [catch {unset a a a(14)} msg] $msg [info exists c]
- } {1 {can't unset "a": no such variable} 1}
- test set-7.7 {unsetting globals from within procedures} {
- set y 0
- proc p1 {} {
- global y
- set z [p2]
- return [list $z [catch {set y} msg] $msg]
- }
- proc p2 {} {global y; unset y; list [catch {set y} msg] $msg}
- p1
- } {{1 {can't read "y": no such variable}} 1 {can't read "y": no such variable}}
- test set-7.8 {unsetting globals from within procedures} {
- set y 0
- proc p1 {} {
- global y
- p2
- return [list [catch {set y 44} msg] $msg]
- }
- proc p2 {} {global y; unset y}
- concat [p1] [list [catch {set y} msg] $msg]
- } {0 44 0 44}
- test set-7.9 {unsetting globals from within procedures} {
- set y 0
- proc p1 {} {
- global y
- unset y
- return [list [catch {set y 55} msg] $msg]
- }
- concat [p1] [list [catch {set y} msg] $msg]
- } {0 55 0 55}
- test set-7.10 {unset command} {
- catch {unset a}
- set a(14) 22
- unset a(14)
- list [catch {set a(14)} msg] $msg [catch {array names a} msg2] $msg2
- } {1 {can't read "a(14)": no such element in array} 0 {}}
- test set-7.11 {unset command} {
- catch {unset a}
- set a(14) 22
- unset a
- list [catch {set a(14)} msg] $msg [catch {array names a} msg2] $msg2
- } {1 {can't read "a(14)": no such variable} 1 {"a" isn't an array}}
-
- # Array command.
-
- test set-8.1 {array command} {
- list [catch {array} msg] $msg
- } {1 {wrong # args: should be "array option arrayName ?arg ...?"}}
- test set-8.2 {array command} {
- catch {unset a}
- list [catch {array names a} msg] $msg
- } {1 {"a" isn't an array}}
- test set-8.3 {array command} {
- catch {unset a}
- set a 44
- list [catch {array names a} msg] $msg
- } {1 {"a" isn't an array}}
- test set-8.4 {array command} {
- catch {unset a}
- set a(22) 3
- list [catch {array gorp a} msg] $msg
- } {1 {bad option "gorp": should be anymore, donesearch, names, nextelement, size, or startsearch}}
- test set-8.5 {array command, names option} {
- catch {unset a}
- set a(22) 3
- list [catch {array names a 4} msg] $msg
- } {1 {wrong # args: should be "array names arrayName"}}
- test set-8.6 {array command, names option} {
- catch {unset a}
- set a(22) 3; set a(Textual_name) 44; set "a(name with spaces)" xxx
- list [catch {lsort [array names a]} msg] $msg
- } {0 {22 Textual_name {name with spaces}}}
- test set-8.7 {array command, names option} {
- catch {unset a}
- set a(22) 3; set a(33) 44;
- trace var a(xxx) w ignore
- list [catch {lsort [array names a]} msg] $msg
- } {0 {22 33}}
- test set-8.8 {array command, names option} {
- catch {unset a}
- set a(22) 3; set a(33) 44;
- trace var a(xxx) w ignore
- set a(xxx) value
- list [catch {lsort [array names a]} msg] $msg
- } {0 {22 33 xxx}}
- test set-8.9 {array command, size option} {
- catch {unset a}
- set a(22) 3
- list [catch {array size a 4} msg] $msg
- } {1 {wrong # args: should be "array size arrayName"}}
- test set-8.10 {array command, size option} {
- catch {unset a}
- set a(22) 3; set a(Textual_name) 44; set "a(name with spaces)" xxx
- list [catch {array size a} msg] $msg
- } {0 3}
- test set-8.10 {array command, size option} {
- catch {unset a}
- set a(22) 3; set a(xx) 44; set a(y) xxx
- unset a(22) a(y) a(xx)
- list [catch {array size a} msg] $msg
- } {0 0}
- test set-8.11 {array command, size option} {
- catch {unset a}
- set a(22) 3;
- trace var a(33) rwu ignore
- list [catch {array size a} msg] $msg
- } {0 1}
-
- test set-9.1 {ids for array enumeration} {
- catch {unset a}
- set a(a) 1
- list [array st a] [array st a] [array done a s-1-a; array st a] \
- [array done a s-2-a; array d a s-3-a; array start a]
- } {s-1-a s-2-a s-3-a s-1-a}
- test set-9.2 {array enumeration} {
- catch {unset a}
- set a(a) 1
- set a(b) 1
- set a(c) 1
- set x [array startsearch a]
- list [array nextelement a $x] [array ne a $x] [array next a $x] \
- [array next a $x] [array next a $x]
- } {a b c {} {}}
- test set-9.3 {array enumeration} {
- catch {unset a}
- set a(a) 1
- set a(b) 1
- set a(c) 1
- set x [array startsearch a]
- set y [array startsearch a]
- set z [array startsearch a]
- list [array nextelement a $x] [array ne a $x] \
- [array next a $y] [array next a $z] [array next a $y] \
- [array next a $z] [array next a $y] [array next a $z] \
- [array next a $y] [array next a $z] [array next a $x] \
- [array next a $x]
- } {a b a a b b c c {} {} c {}}
- test set-9.4 {array enumeration: stopping searches} {
- catch {unset a}
- set a(a) 1
- set a(b) 1
- set a(c) 1
- set x [array startsearch a]
- set y [array startsearch a]
- set z [array startsearch a]
- list [array next a $x] [array next a $x] [array next a $y] \
- [array done a $z; array next a $x] \
- [array done a $x; array next a $y] [array next a $y]
- } {a b a c b c}
- test set-9.5 {array enumeration: stopping searches} {
- catch {unset a}
- set a(a) 1
- set x [array startsearch a]
- array done a $x
- list [catch {array next a $x} msg] $msg
- } {1 {couldn't find search "s-1-a"}}
- test set-9.6 {array enumeration: searches automatically stopped} {
- catch {unset a}
- set a(a) 1
- set x [array startsearch a]
- set y [array startsearch a]
- set a(b) 1
- list [catch {array next a $x} msg] $msg \
- [catch {array next a $y} msg2] $msg2
- } {1 {couldn't find search "s-1-a"} 1 {couldn't find search "s-2-a"}}
- test set-9.7 {array enumeration: searches automatically stopped} {
- catch {unset a}
- set a(a) 1
- set x [array startsearch a]
- set y [array startsearch a]
- set a(a) 2
- list [catch {array next a $x} msg] $msg \
- [catch {array next a $y} msg2] $msg2
- } {0 a 0 a}
- test set-9.8 {array enumeration: searches automatically stopped} {
- catch {unset a}
- set a(a) 1
- set x [array startsearch a]
- set y [array startsearch a]
- catch {unset a(c)}
- list [catch {array next a $x} msg] $msg \
- [catch {array next a $y} msg2] $msg2
- } {1 {couldn't find search "s-1-a"} 1 {couldn't find search "s-2-a"}}
- test set-9.9 {array enumeration: searches automatically stopped} {
- catch {unset a}
- set a(a) 1
- set x [array startsearch a]
- set y [array startsearch a]
- trace var a(b) r {}
- list [catch {array next a $x} msg] $msg \
- [catch {array next a $y} msg2] $msg2
- } {1 {couldn't find search "s-1-a"} 1 {couldn't find search "s-2-a"}}
- test set-9.10 {array enumeration: searches automatically stopped} {
- catch {unset a}
- set a(a) 1
- set x [array startsearch a]
- set y [array startsearch a]
- trace var a(a) r {}
- list [catch {array next a $x} msg] $msg \
- [catch {array next a $y} msg2] $msg2
- } {0 a 0 a}
- test set-9.11 {array enumeration with traced undefined elements} {
- catch {unset a}
- set a(a) 1
- trace var a(b) r {}
- set x [array startsearch a]
- list [array next a $x] [array next a $x]
- } {a {}}
-
- test set-10.1 {array enumeration errors} {
- list [catch {array start} msg] $msg
- } {1 {wrong # args: should be "array option arrayName ?arg ...?"}}
- test set-10.2 {array enumeration errors} {
- list [catch {array start a b} msg] $msg
- } {1 {wrong # args: should be "array startsearch arrayName"}}
- test set-10.3 {array enumeration errors} {
- catch {unset a}
- list [catch {array start a} msg] $msg
- } {1 {"a" isn't an array}}
- test set-10.4 {array enumeration errors} {
- catch {unset a}
- set a(a) 1
- set x [array startsearch a]
- list [catch {array next a} msg] $msg
- } {1 {wrong # args: should be "array nextelement arrayName searchId"}}
- test set-10.5 {array enumeration errors} {
- catch {unset a}
- set a(a) 1
- set x [array startsearch a]
- list [catch {array next a b c} msg] $msg
- } {1 {wrong # args: should be "array nextelement arrayName searchId"}}
- test set-10.6 {array enumeration errors} {
- catch {unset a}
- set a(a) 1
- set x [array startsearch a]
- list [catch {array next a a-1-a} msg] $msg
- } {1 {illegal search identifier "a-1-a"}}
- test set-10.7 {array enumeration errors} {
- catch {unset a}
- set a(a) 1
- set x [array startsearch a]
- list [catch {array next a sx1-a} msg] $msg
- } {1 {illegal search identifier "sx1-a"}}
- test set-10.8 {array enumeration errors} {
- catch {unset a}
- set a(a) 1
- set x [array startsearch a]
- list [catch {array next a s--a} msg] $msg
- } {1 {illegal search identifier "s--a"}}
- test set-10.9 {array enumeration errors} {
- catch {unset a}
- set a(a) 1
- set x [array startsearch a]
- list [catch {array next a s-1-b} msg] $msg
- } {1 {search identifier "s-1-b" isn't for variable "a"}}
- test set-10.10 {array enumeration errors} {
- catch {unset a}
- set a(a) 1
- set x [array startsearch a]
- list [catch {array next a s-1ba} msg] $msg
- } {1 {illegal search identifier "s-1ba"}}
- test set-10.11 {array enumeration errors} {
- catch {unset a}
- set a(a) 1
- set x [array startsearch a]
- list [catch {array next a s-2-a} msg] $msg
- } {1 {couldn't find search "s-2-a"}}
- test set-10.12 {array enumeration errors} {
- list [catch {array done a} msg] $msg
- } {1 {wrong # args: should be "array donesearch arrayName searchId"}}
- test set-10.13 {array enumeration errors} {
- list [catch {array done a b c} msg] $msg
- } {1 {wrong # args: should be "array donesearch arrayName searchId"}}
- test set-10.14 {array enumeration errors} {
- list [catch {array done a b} msg] $msg
- } {1 {illegal search identifier "b"}}
- test set-10.15 {array enumeration errors} {
- list [catch {array anymore a} msg] $msg
- } {1 {wrong # args: should be "array anymore arrayName searchId"}}
- test set-10.16 {array enumeration errors} {
- list [catch {array any a b c} msg] $msg
- } {1 {wrong # args: should be "array anymore arrayName searchId"}}
- test set-10.17 {array enumeration errors} {
- catch {unset a}
- set a(0) 44
- list [catch {array any a bogus} msg] $msg
- } {1 {illegal search identifier "bogus"}}
-
- # Array enumeration with "anymore" option
-
- test set-11.1 {array anymore option} {
- catch {unset a}
- set a(a) 1
- set a(b) 2
- set a(c) 3
- array startsearch a
- list [array anymore a s-1-a] [array next a s-1-a] \
- [array anymore a s-1-a] [array next a s-1-a] \
- [array anymore a s-1-a] [array next a s-1-a] \
- [array anymore a s-1-a] [array next a s-1-a]
- } {1 a 1 b 1 c 0 {}}
- test set-11.2 {array anymore option} {
- catch {unset a}
- set a(a) 1
- set a(b) 2
- set a(c) 3
- array startsearch a
- list [array next a s-1-a] [array next a s-1-a] \
- [array anymore a s-1-a] [array next a s-1-a] \
- [array next a s-1-a] [array anymore a s-1-a]
- } {a b 1 c {} 0}
-
- # Must delete variables when done, since these arrays get used as
- # scalars by other tests.
-
- catch {unset a}
- catch {unset b}
- catch {unset c}
- return ""
-